* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	list-style: none;
}

div {
	display: block;
	font-family: "poppins";
}

.box1 {
	width: 100%;
	padding: 100px 0 80px;
}

.box1-top h6 {
	text-align: center;
	line-height: 1;
	font-size: 40px;
	color: #333333;
	margin-bottom: 50px;
	font-family: "Myriad Pro";
}

.box1-mid>ul {
	display: flex;
	flex-wrap: wrap;
}

.box1-mid>ul>li {
	width: 32%;
	padding: 50px 38px;
	border: 1px solid #eeeeee;
	margin-bottom: 40px;
}

.box1-mid>ul>li:nth-child(3n-1) {
	margin-left: 2%;
	margin-right: 2%;
}

.box1-box-t {
	display: flex;
	line-height: 1;
	margin-bottom: 30px;
	align-items: center;
}

.box1-box-t .iconfont {
	font-size: 23px;
	color: #666666;
	transition: all 0.3s ease;
}

.box1-box-t p {
	font-size: 16px;
	line-height: 1%;
	color: #333333;
	font-weight: bold;
	margin-left: 15px;
	transition: all 0.3s ease;
}

.box1-box:hover .box1-box-t .iconfont {
	color: #0170c5;
}

.box1-box:hover .box1-box-t p {
	color: #0170c5;
}

.box1-box-m p {
	line-height: 1;
	color: #666666;
	font-size: 16px;
	font-family: "Myriad Pro";
	margin-bottom: 20px;
}

.box1-box-m p:last-child {
	margin-bottom: 0;
}

.box1-box a {
	display: block;
	width: 46px;
	height: 34px;
	line-height: 30px;
	text-align: center;
	color: #0170c5;
	border: 2px solid #666666;
	margin-top: 28px;
	border-radius: 17px;
	transition: all 0.5s ease;
}

.box1-box:hover a {
	border-color: #0170c5;
	background: #0170c5;
	color: #fff;
}

.box1-mid>ul>li:hover {
	box-shadow: 0 0 10px #555;
}











.overlay {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

.popup {
	height: 75vh;
	background: #fff;
	position: fixed;
	z-index: 9999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 70px;
	display: none;
}

/* .popup-content {
	position: relative;
} */

.popup-top {
	display: flex;
	align-items: center;
	color: #0170c5;
	line-height: 1;
	margin-bottom: 40px;
}

.popup-top .iconfont {
	font-size: 25px;
	font-weight: 600;
}

.popup-top p {
	margin-left: 10px;
	font-size: 18px;
}

.popup-mind {
	overflow: auto;
	max-height: 50vh;
}

.popup-mind-a {
	margin-bottom: 40px;
}

.popup-mind-a ul>p {
	font-size: 18px;
	color: #525252;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 10px;
}

.popup-mind-a ul li p {
	color: #525252;
	font-size: 16px;
	line-height: 26px;
}

.popup-mind-b ul li {
	display: flex;
	color: #525252;
	font-size: 16px;
	line-height: 32px;
}

.popup-mind-b ul li p {
	margin-right: 5px;
}

.popup-bom {
	margin-top: 30px;
}

.popup-bom a {
	display: block;
	width: 220px;
	height: 58px;
	background: #0170c5;
	font-size: 16px;
	line-height: 58px;
	text-align: center;
	color: #fff;
}

.close-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	cursor: pointer;
}

.close-btn span {
	display: block;
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	font-size: 25px;
	border: 1px solid #e9e9e9;
	border-radius: 50%;
	color: #7f7f7f;
}
@media (max-width: 1024px) {
	.box1{
		padding: 70px 0;
	}
	.box1-top h6{
		font-size: 30px;
		margin-bottom: 40px;
	}
	.box1-mid>ul>li{
		width: 48.5%;
		margin-bottom: 40px;
	}
	.box1-mid>ul>li:nth-child(3n-1){
		margin-left: 0;
		margin-right: 0;
	}
	.box1-mid>ul>li:nth-child(2n+1){
		margin-right: 3%;
	}
	.popup{
		padding: 40px 40px 30px;
	}
	.popup-top{
		margin-bottom: 20px;
	}
	.close-btn{
		top: 20px;
		right: 20px;
	}
	.close-btn span{
		width: 38px;
		height: 38px;
		line-height: 36px;
		font-size: 20px;
	}
	.popup-bom a{
		width: 200px;
		height: 45px;
		line-height: 45px;
	}
}
@media (max-width:  768px) {
	.box1-top h6{
		font-size: 26px;
	}
	.box1{
		padding: 50px 0;
	}
	.box1-top h6{
		margin-bottom: 30px;
	}
	.box1-mid>ul>li{
		padding: 25px;
	}
	.box1-box-m p{
		margin-bottom: 10px;
	}
}
@media (max-width:  500px) {
	.popup{
		padding: 30px;
		height: auto;
	}
	.box1-mid>ul>li{
		width: 100%;
	}
	.box1-top h6{
		font-size: 22px;
	}
	.box1{
		padding: 40px 0;
	}
	.box1-mid>ul>li:nth-child(2n+1){
		margin-right: 0;
	}
	.box1-mid>ul>li{
		margin-bottom: 25px;
	}
}